Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump webpack, webpack-assets-manifest and webpack-cli #810

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
f4b9444
In basic UI, bring 2-column view to the center
Hanage999 May 26, 2019
d9221e0
Fix multi-column layout that cannot scroll to the leftmost column whe…
Hanage999 May 26, 2019
9d19007
fix conflict in settings.yml
Hanage999 Dec 15, 2018
f865388
enable Japanese(kuromoji) analyzer
Hanage999 Mar 8, 2018
40a1420
Followed changes in the default variables.scss
Hanage999 Apr 13, 2018
257afbd
Increase ElasticSearch results
Hanage999 Apr 14, 2018
da33a6c
follow mastodon/app/javascript/styles/mastodon/variables.scss at master
Hanage999 Apr 21, 2018
30ef9d6
Revert "Increase ElasticSearch results"
Hanage999 Apr 23, 2018
f1ea201
change background of login/sign-up screen
Hanage999 Apr 23, 2018
8e8d555
adjusted transparent background
Hanage999 May 13, 2018
0ebe27b
change background image
Hanage999 May 14, 2018
1a5f4ee
adjust background image size
Hanage999 May 14, 2018
e161e75
add background images
Hanage999 May 29, 2018
54d78fe
Re-organize crazynewworld theme
Hanage999 Jul 16, 2018
2c6bbdc
set background of profile boxes transparent
Hanage999 Jul 30, 2018
9b66bc0
made .endorsements-widget and .card__bar transparent
Hanage999 Aug 19, 2018
5a32b54
make about/more page transparent
Hanage999 Aug 23, 2018
e7555d4
hide 'more' at footer of public pages
Hanage999 Aug 24, 2018
47c0dc0
change color of horizontal lines in admin pages
Hanage999 Sep 30, 2018
4387e82
add report-uri directive
Hanage999 Oct 21, 2018
96b89a9
adjusted background of status-card
Hanage999 Oct 31, 2018
a70d4ac
make directory page transparent
Hanage999 Dec 8, 2018
1e7e815
add 'crazynewworld-blue' theme
Hanage999 Jan 4, 2019
691605a
adjust color of background-blue.jpg
Hanage999 Jan 4, 2019
a902295
adjust public tag timeline CSS
Hanage999 Jan 18, 2019
873b3de
make hero card in new landing page transparent
Hanage999 Mar 24, 2019
d11aa66
make new profile column design in web UI transparent
Hanage999 Mar 26, 2019
4c4e0a6
adjust background color of verified account header in webUI
Hanage999 Mar 27, 2019
9cdbe52
make new single-column UI transparent
Hanage999 May 26, 2019
148c379
Fix 3-columns layout
Hanage999 May 26, 2019
0ce2150
Revert "Fix 3-columns layout"
Hanage999 May 31, 2019
d76859e
Revert "Fix multi-column layout that cannot scroll to the leftmost co…
Hanage999 May 31, 2019
1931981
Revert "In basic UI, bring 2-column view to the center"
Hanage999 May 31, 2019
bff61e8
Fix color of navigation links in simple UI
Hanage999 Jun 1, 2019
c3d4ad6
Add themes (default layout + transparency)
Hanage999 Jun 2, 2019
8bd1b95
In 2-column layout, fix color of tab links on mouse hover
Hanage999 Jun 2, 2019
952a132
make tabs-bar darker
Hanage999 Jun 9, 2019
7547b86
tweak compose panel appearance
Hanage999 Jun 9, 2019
833d1bf
Remove rate limit for media proxy requests
Hanage999 Jun 19, 2019
57fbf2a
Adjust background of trends view
Hanage999 Aug 10, 2019
96361f6
Refactor custom scss
Hanage999 Aug 11, 2019
9a340c9
Change CSP to allow tesseract.js
Hanage999 Aug 16, 2019
eb0e56a
Improve CSP
Hanage999 Aug 17, 2019
9239417
Tweak color transparency in settings view and about:more
Hanage999 Oct 16, 2019
111f312
Modify the background of admin announcements
Hanage999 Jan 24, 2020
d53fc35
Adjust background of announcements panel
Hanage999 Jan 26, 2020
e0b1cbe
remove unnecessary elements from CSP
Hanage999 Mar 30, 2020
d72e27c
Make directory page transparent
Hanage999 Aug 14, 2020
72be091
Increase MAX_ITEMS
Hanage999 Sep 11, 2020
75d7f05
Bump webpack, webpack-assets-manifest and webpack-cli
dependabot[bot] Mar 5, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
58 changes: 40 additions & 18 deletions app/chewy/statuses_index.rb
@@ -1,31 +1,53 @@
# frozen_string_literal: true

class StatusesIndex < Chewy::Index

# settings index: { refresh_interval: '15m' }, analysis: {
# filter: {
# english_stop: {
# type: 'stop',
# stopwords: '_english_',
# },
# english_stemmer: {
# type: 'stemmer',
# language: 'english',
# },
# english_possessive_stemmer: {
# type: 'stemmer',
# language: 'possessive_english',
# },
# },
# analyzer: {
# content: {
# tokenizer: 'uax_url_email',
# filter: %w(
# english_possessive_stemmer
# lowercase
# asciifolding
# cjk_width
# english_stop
# english_stemmer
# ),
# },
# },
# }

settings index: { refresh_interval: '15m' }, analysis: {
filter: {
english_stop: {
type: 'stop',
stopwords: '_english_',
},
english_stemmer: {
type: 'stemmer',
language: 'english',
},
english_possessive_stemmer: {
type: 'stemmer',
language: 'possessive_english',
tokenizer: {
kuromoji_user_dict: {
type: 'kuromoji_tokenizer',
user_dictionary: 'userdic.txt',
},
},
analyzer: {
content: {
tokenizer: 'uax_url_email',
type: 'custom',
tokenizer: 'kuromoji_user_dict',
filter: %w(
english_possessive_stemmer
lowercase
asciifolding
kuromoji_baseform
kuromoji_stemmer
cjk_width
english_stop
english_stemmer
lowercase
),
},
},
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/api/v2/search_controller.rb
Expand Up @@ -3,7 +3,7 @@
class Api::V2::SearchController < Api::BaseController
include Authorization

RESULTS_LIMIT = 20
RESULTS_LIMIT = 50

before_action -> { doorkeeper_authorize! :read, :'read:search' }
before_action :require_user!
Expand Down
5 changes: 5 additions & 0 deletions app/javascript/styles/crazynewworld-blue.scss
@@ -0,0 +1,5 @@
@import 'crazynewworld/variables-blue';
@import 'application';
@import 'crazynewworld/3_pains';
@import 'crazynewworld/transparent_background';

4 changes: 4 additions & 0 deletions app/javascript/styles/crazynewworld.scss
@@ -0,0 +1,4 @@
@import 'crazynewworld/variables';
@import 'application';
@import 'crazynewworld/3_pains';
@import 'crazynewworld/transparent_background';
33 changes: 33 additions & 0 deletions app/javascript/styles/crazynewworld/3_pains.scss
@@ -0,0 +1,33 @@
/* 3ペイン化 */

@media screen and (min-width:741px) {

.drawer {
width: 30% !important;
height: 490px !important;
overflow: visible !important;
}

.column {
flex: auto !important;
}

.column:nth-child(3) {
position: fixed !important;
margin-top: 480px !important;
padding-left: 10px !important;
height: calc(100% - 480px) !important;
left: 0px !important;
width: 30% !important;
}

.column:nth-child(3) + div .mastodon-column-container {
height: auto !important;
}

div.column-icon.collapsable + div {
overflow: scroll !important;
}

}

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.